home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / kimproxyiface.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-10-10  |  1.2 KB  |  39 lines

  1. /*    
  2.     kimproxyiface.cpp
  3.     
  4.     IM service library for KDE
  5.     
  6.     DCOP interface to allow us to receive DCOP signals
  7.  
  8.     Copyright (c) 2004 Will Stephenson   <lists@stevello.free-online.co.uk>
  9.  
  10.     This library is free software; you can redistribute it and/or
  11.     modify it under the terms of the GNU Library General Public
  12.     License as published by the Free Software Foundation; either
  13.     version 2 of the License, or (at your option) any later version.
  14.  
  15.     This library is distributed in the hope that it will be useful,
  16.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18.     Library General Public License for more details.
  19.  
  20.     You should have received a copy of the GNU Library General Public License
  21.     along with this library; see the file COPYING.LIB.  If not, write to
  22.     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  23.     Boston, MA 02110-1301, USA.
  24. */
  25.  
  26. #ifndef KIMPROXYIFACE_H
  27. #define KIMPROXYIFACE_H
  28.  
  29. #include <dcopobject.h>
  30.  
  31. class KIMProxyIface : virtual public DCOPObject
  32. {
  33.     K_DCOP
  34.     k_dcop:
  35.         virtual void contactPresenceChanged( QString uid, QCString appId, int presence ) = 0;
  36. };
  37.  
  38. #endif
  39.